#Installing and Launching R Packages
packages = c('DT', 'ggiraph', 'plotly', 'tidyverse')
for (p in packages){
if (!require(p, character.only = T)){
install.packages(p)
}
library(p, character.only = T)
}
exam_data <- read_csv("data/Exam_data.csv")
#’You can also embed plots, for example:
#```{r pressure, echo=FALSE} #plot(pressure)
#Note that the echo = FALSE parameter was added to the code chunk to prevent printing of the R code that generated the plot.